home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Online / HTMLEdit / install < prev   
Encoding:
Text File  |  1999-01-04  |  894 b   |  42 lines

  1. ;Installer script for HTML Editor version 1.32
  2. ;Author: Adam 'Sherwood' Zaparcinski
  3.  
  4. (message "Welcome to the instalation of HTML Editor v 1.32\n\n"
  5.             "Note that This instalation script installs HTML Editor "
  6.             "in one directory so If You'll want to uninstall it then "
  7.             "just delete directroy where all files were copied"
  8. )
  9.  
  10. ;choose the directory
  11.  
  12. (set destpath
  13.     (askdir
  14.         (prompt "Please choose the directory where HTML Editor will be installed\n"
  15.                     "A new directory called 'HTMLEdit' will be created")
  16.         (default @Default-dest)
  17.         (help @askdir-help)
  18.     )
  19. )
  20.  
  21. (set destpath (tackon destpath "HTMLEdit"))
  22.  
  23. ;(makedir destpath (safe))
  24.  
  25. (set @Default-dest destpath)
  26.  
  27. ;Copying files
  28.  
  29. (copyfiles
  30.     (prompt "Copying files")
  31.     (help @copyfiles-help)
  32.     (source "")
  33.     (dest @Default-dest)
  34.     (all)
  35.     (infos)
  36. )
  37.  
  38. (message "HTML Editor is installed in Your directory:"
  39.     @Default-Dest
  40.     "\nHave a good fun!"
  41. )
  42.